.siteHeader{
    background:linear-gradient(90deg, rgba(81, 160, 131, .75), rgba(32, 99, 156, .75)), url("../../images/headerbg.jpg");
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;
    background-position-x: center;
    background-position-y: -90%;*/
    height:200px;

}
.siteHeaderContent{
    margin:auto;
    max-width:1330px;
    display:flex;
    align-items: center;
    height:100%;
}
.siteHeaderLogo{
    height:80px;
}
.siteHeaderLogo a img{
    height:100%;
}
.siteHeaderLogo a img{
    height:100%;
    user-select: none;
}
.navbar{
    background-color: #2d4f79;
    color: white;
    height:50px;
}
#navbarContent{
    max-width:1330px;
    margin:auto;
    height:100%;
}
/*Top level nav bar*/
#navbarContent > ul{
    padding: 0px;
    margin: 0px;
    display: flex;
    font-size: 18px;
    height:100%;
}
#navbarContent > ul > li{
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    height:100%;
}
#navbarContent > ul > li:hover{
    background-color: #CCD6DF;
    color: #2d4f79;
}
#navbarContent > ul > li:nth-last-child(1){
    background-color: #e23030;
    margin-left:10px;
}
#navbarContent > ul > li:nth-last-child(1):hover{
    background-color: red;
    color:white;
}
#navbarContent > ul > li > a{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
    min-width: 100px;
    text-decoration: none;
}
#navbarContent > ul > li > a > i{
    /*font-size: 30pt;*/
    margin-right: 10px;
}
#navbarContent > ul > li > a > p{
    margin:0px;
}
/*Hover selectors for showing second level nav bar*/
#navbarContent > ul > li:hover ul{
    display: block;
    opacity: 1;
}
/*Second level nav bar*/
#navbarContent > ul > li ul{
    display: none;
    opacity: 0;
    background-color: #CCD6DF;
    color: #2d4f79;
    position: absolute;
    top:100%;
    z-index: 1000;
    list-style: none;
    margin-left: 0;
    min-width:250px;
    white-space: nowrap;
    text-align: left;
    padding: 0;
    transition: opacity 0.5s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}
#navbarContent > ul > li ul > li{
    padding: 10px;
    font-size: 18px;
}
#navbarContent > ul > li ul > li:hover{
    background-color: #2d4f79;
    color:white;
}

/* Styles assosiated with the mobile header and navbar */
#navMButtons a{
    border: #CCD6DF solid 1px;
    padding: 5px;
    border-radius: 5px;
}
#navMButtons a{
    margin: 0px 5px;
}
#sitepartMHeader{
    background-color: #2d4f79;
    padding: 0px 0px 0px 10px;
    box-sizing: border-box;
    color:white;
}
#sitepartMHeader a{
    color:inherit;
    text-decoration: inherit;
}
#sitepartMHeader  > div{
    display: flex;
    align-items: center;
}
#sitepartMHeader > div > div:nth-child(1) > a > img{
    height: 40px;
    padding: 5px 0px;
}
#sitepartMHeader > div > div:nth-child(2){
    width:100%;
}
#sitepartMHeader > div > div:nth-child(3){
    display:flex;
    font-size: 24px;
}
#sitepartMHeader > div > div:nth-child(3) i {
    margin: 0px 10px;
}
#navMContainer{
    padding-bottom: 10px;
    overflow: hidden;
}
#navMContainer > ul{
    padding: 0px;
    margin: 0px;
    font-size: 19px;
}
#navMContainer > ul > li{
    list-style: none;
    align-items: center;
    cursor: pointer;
}
#navMContainer > ul > li > a{
    display: flex;
    align-items: center;
}
#navMContainer > ul > li > a > i{
    margin-left:5px;
}
#navMContainer > ul > li > ul{
    max-height:0px;
    overflow: hidden;
    font-size: 16px;
}
#navMContainer > ul > li > ul > li{
    list-style: none;
    padding-top: 5px;
    padding-bottom: 5px;
}
.collapseClose{
    max-height: 0px;
    padding-bottom: 0px !important;
}
.collapseOpen{
    max-height: 200vh !important;
}